summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatías Locatti <42481638+goldenx86@users.noreply.github.com>2023-01-13 08:55:26 +0100
committerGitHub <noreply@github.com>2023-01-13 08:55:26 +0100
commit4294429a079a5902531d36d86229eb970b0c3d53 (patch)
tree373e7edfd836949b6b35ea73e89d6350ca9ca416
parentUI change (diff)
downloadyuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar
yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.gz
yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.bz2
yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.lz
yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.xz
yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.zst
yuzu-4294429a079a5902531d36d86229eb970b0c3d53.zip
-rw-r--r--src/common/settings.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp
index 6a5569fe0..b1a2aa8b2 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -153,6 +153,14 @@ void UpdateRescalingInfo() {
info.up_scale = 6;
info.down_shift = 0;
break;
+ case ResolutionSetup::Res7X:
+ info.up_scale = 7;
+ info.down_shift = 0;
+ break;
+ case ResolutionSetup::Res8X:
+ info.up_scale = 8;
+ info.down_shift = 0;
+ break;
default:
ASSERT(false);
info.up_scale = 1;